Test Level 1¶

Test Level 2¶

Test Level 3¶

In [1]:
# images

Introduction¶

Welcome to my awesome class. You will learn all kinds of useful things about Data Analytics.

  • Markdown is simple
  • You can add Python and R code
  • You can add $\LaTeX$ equations
  • you can add images:
In [2]:
! pip install plotly_express
import plotly.express as px
fig = px.scatter(
  x=[0, 1, 2, 3, 4], 
  y=[0, 1, 4, 9, 16])
fig.show()
Collecting plotly_express
  Obtaining dependency information for plotly_express from https://files.pythonhosted.org/packages/d4/d6/8a2906f51e073a4be80cab35cfa10e7a34853e60f3ed5304ac470852a08d/plotly_express-0.4.1-py2.py3-none-any.whl.metadata
  Downloading plotly_express-0.4.1-py2.py3-none-any.whl.metadata (1.7 kB)
Requirement already satisfied: pandas>=0.20.0 in ./anaconda3/lib/python3.11/site-packages (from plotly_express) (2.0.3)
Requirement already satisfied: plotly>=4.1.0 in ./anaconda3/lib/python3.11/site-packages (from plotly_express) (5.9.0)
Requirement already satisfied: statsmodels>=0.9.0 in ./anaconda3/lib/python3.11/site-packages (from plotly_express) (0.14.0)
Requirement already satisfied: scipy>=0.18 in ./anaconda3/lib/python3.11/site-packages (from plotly_express) (1.11.1)
Requirement already satisfied: patsy>=0.5 in ./anaconda3/lib/python3.11/site-packages (from plotly_express) (0.5.3)
Requirement already satisfied: numpy>=1.11 in ./anaconda3/lib/python3.11/site-packages (from plotly_express) (1.24.3)
Requirement already satisfied: python-dateutil>=2.8.2 in ./anaconda3/lib/python3.11/site-packages (from pandas>=0.20.0->plotly_express) (2.8.2)
Requirement already satisfied: pytz>=2020.1 in ./anaconda3/lib/python3.11/site-packages (from pandas>=0.20.0->plotly_express) (2023.3.post1)
Requirement already satisfied: tzdata>=2022.1 in ./anaconda3/lib/python3.11/site-packages (from pandas>=0.20.0->plotly_express) (2023.3)
Requirement already satisfied: six in ./anaconda3/lib/python3.11/site-packages (from patsy>=0.5->plotly_express) (1.16.0)
Requirement already satisfied: tenacity>=6.2.0 in ./anaconda3/lib/python3.11/site-packages (from plotly>=4.1.0->plotly_express) (8.2.2)
Requirement already satisfied: packaging>=21.3 in ./anaconda3/lib/python3.11/site-packages (from statsmodels>=0.9.0->plotly_express) (23.1)
Downloading plotly_express-0.4.1-py2.py3-none-any.whl (2.9 kB)
Installing collected packages: plotly_express
Successfully installed plotly_express-0.4.1
In [ ]: